﻿#DivAktualniPozice {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
}

#AktualniPoziceToolbar {
    position: absolute;
    left: 4px;
    top: 4px;
    right: 0px;
    height: 28px;
    padding: 0px;
}

#AktualniPoziceVsechnyGridy {
    position: absolute;
    left: 0px;
    top: 42px;
    right: 0px;
    bottom: 0px;
}

.AktualniPoziceGrid {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
}

#AktualniPoziceKontejnerProMapu {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
}

#AktualniPoziceMapa {
    width: 100%;
    height: 100%;
}

#AktualniPoziceIndikatorBezicihoVypoctu {
    z-index: 9999;
    position: absolute;
    left: 4px;
    top: 4px;
    width: 3rem;
    height: 3rem;
    border: 5px solid #f3f3f3;
    border-top: 6px solid rgb(55,115,174);
    border-radius: 100%;
    margin: auto;
    visibility: hidden;
    animation: spin 1s infinite linear;
}

    #AktualniPoziceIndikatorBezicihoVypoctu.display {
        visibility: visible;
    }

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#GridAktualniPoziceSkupinaPopisku {
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 10px;
    width: 300px;
    padding: 6px;
    background-color: rgb(186, 251, 87);
    border-style: solid;
    border-width: thin;
    border-radius: 6px;
    border-color: gray;
}